home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9206.ARJ / 1006074A < prev    next >
Text File  |  1992-06-02  |  215b  |  13 lines

  1. hello.exe : main.obj hello.obj
  2.         bcc -ehello.exe main.obj hello.obj
  3.         copy hello.exe c:\bin\hello.exe
  4.  
  5. hello.obj : hello.c proto.h
  6.         bcc -c hello.c
  7.  
  8. main.obj : main.c proto.h
  9.         bcc -c main.c
  10.  
  11. proto.h :
  12.  
  13.